home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / janusw.zip / README.TXT < prev   
Text File  |  1992-07-26  |  3KB  |  77 lines

  1. This is the second public release of two related objects
  2.   tDialogWindow and tJanusDialogWindow
  3. and a test program called DlgTest.
  4.  
  5. Documentation -if any- is very spare because I speak english
  6. not very well. If anyone would like to make a real documentation for
  7. this stuff - go ahead and contact me at CompuServe 100031,3002.
  8.  
  9.              Peter Sawatzki (PS)
  10.              Buchenhof 3, D-5800 Hagen 1, Germany
  11.  CompuServe: 100031,3002
  12.        FIDO: 2:245/5800.17
  13.      BITNET: IN307@DHAFEU11
  14.  
  15.   Copyright (c) 1992 Peter Sawatzki. All Rights Reserved.
  16.  
  17.  
  18. tDialogWindow (unit DialogWn)
  19. =============================
  20. tDialogWindow is a descendant of tWindow that behaves like a modeless dialog
  21. (like Borlands tDlgWindow). It inherits all features from tWindow making it
  22. easy to use tDialogWindow as MDI child windows. Furthermore tDialogWindow
  23. virtualizes the creation of its child windows when they are loaded from
  24. resource. A descendant of tDialogWindow 'tJanusDialogWindow' makes use of
  25. this feature and creates 'BorChilds' if BWCC.DLL is loaded, standard childs
  26. if not.
  27.  
  28. tJanusDialogWindow (unit JanusWn)
  29. =================================
  30. tJanusDialogWindow is a descendant of tDialogWindow that is able to create
  31. a modeless BorDlg from a standard dialog resource, a standard dialog from
  32. a Borland style dialog (and the other two combinations).
  33. Some further features:
  34.   - no wObjectB is needed
  35.   - one decides at runtime whether to use BorDlgs or standard dialogs
  36.   - a kind of national language support for BorButtons: if you intend to
  37.     have for example a german version of Borlands "&No" button
  38.     in your program, it's that simple: just put a "&Nein"
  39.     BorButton with id 7 in your resource and tJanusDialogWindow
  40.     automatically loads the bitmaps for you.
  41.  
  42.  
  43. program DlgTest
  44. ===============
  45. DlgTest demonstrates tDialogWindow and tJanusDialogWindow use as modeless
  46. Dialog Windows and MDI child windows.
  47.  
  48.   - creates a standard Dialog from BorDlg resource
  49.   - creates a BorDlg from standard resource
  50.   - creates Dialogs as is
  51.   - demonstrates the use of "non-standard" MDI child styles
  52.     under Windows 3.1
  53. uses BWCC.DLL if present. If not: it doesn't matter :-)
  54.  
  55.  
  56. To Do List
  57. ==========
  58.  
  59.  - Modal dialogs
  60.  - documentation
  61.  
  62. Please report bugs of any kind to me, send improvements you made.
  63. If you modify/include my units in one of your programs or put them on a
  64. bonus disk, i would love to see a copy of it.
  65.  
  66. Release: 1.6.92
  67.  
  68. Peter Sawatzki
  69. Buchenhof 3, D-5800 Hagen 1, Germany
  70.  
  71.  CompuServe: 10031,3002
  72.        FIDO: 2:245/5800.17
  73.      BITNET: IN307@DHAFEU11
  74.  
  75.   Copyright (c) 1992 Peter Sawatzki. All Rights Reserved.
  76.  
  77.